File: Analyzers\Verifiers\CSharpSourceGeneratorTest`1.cs
Web Access
Project: src\src\System.Windows.Forms.Analyzers.CSharp\tests\UnitTests\System.Windows.Forms.Analyzers.CSharp.Tests.csproj (System.Windows.Forms.Analyzers.CSharp.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Testing;
using Microsoft.CodeAnalysis.Testing;
using static Microsoft.CodeAnalysis.Testing.ReferenceAssemblies;
 
namespace System.Windows.Forms.Analyzers.Tests.Verifiers;
 
public class CSharpSourceGeneratorTest<TSourceGenerator>
    : CSharpSourceGeneratorTest<TSourceGenerator, DefaultVerifier>
    where TSourceGenerator : ISourceGenerator, new()
{
    public CSharpSourceGeneratorTest()
    {
        ReferenceAssemblies = NetFramework.Net472.WindowsForms;
    }
}